home *** CD-ROM | disk | FTP | other *** search
- #pragma once
- /*****
- *
- * SplashScreen.h
- *
- * This is a support file for "Grant's CGI Framework".
- * Please see the license agreement that accompanies the distribution package
- * for licensing details.
- *
- * Copyright ©1995,1996 by Grant Neufeld
- * grant@acm.com
- * http://arpp.carleton.ca/grant/
- *
- *****/
-
- #if kCompileWithForeground && kCompileWithSplashScreen
-
- /*** FUNCTION PROTOTYPES ***/
-
- void SplashScreenCreate ( void );
- void SplashScreenDispose ( void );
-
- #else /* if not kCompileWithForeground and not kCompileWithSplashScreen */
-
- #define SplashScreenCreate()
- #define SplashScreenDispose()
-
- #endif /* kCompileWithForeground && kCompileWithSplashScreen */
-
- /***** EOF *****/
-